home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Lights_Factory_Defaul < prev    next >
Encoding:
Text File  |  2003-04-22  |  957 b   |  28 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for Lights effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Lights():
  14.     return {
  15.         'GeneralSettings': {
  16.             'AutoActionMode': 0,
  17.             'ExecutionMode': 0
  18.             },
  19.         'Lights': ((1, (200, 200, 200), (-70, -70, 10, 500, 28, 45, 40, 155)), (1, (200, 200, 200), (70, -70, 10, 500, 28, 45, 40, 245)), 
  20.         (1, (200, 200, 200), (70, 70, 10, 500, 28, 45, 40, 335)), (1, (200, 200, 200), (-70, 70, 10, 500, 28, 45, 40, 65)), 
  21.         (1, (200, 200, 200), (0, 0, 10, 500, 28, 45, 0, 200))),
  22.         'SelButton': 0,
  23.         'Darkness': 85
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'Lights', Preset_Lights())
  28.